Skip to content

Instantly share code, notes, and snippets.

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@zatarra
zatarra / QS-Zigbee-S10-C03.md
Last active April 22, 2026 10:46
QS-Zigbee-S10-C03 pinout for OpenBeken

The QS-Zigbee-S10-C03 is a Smart Switch module for Garage Doors based on the BK7238 microcontroller (Available here: https://s.click.aliexpress.com/e/_c4teQDSR )

To save you some time, these are the pin configurations:

P1 -> The builtin button
P8 -> The Relay
P9 -> The door sensor
P24 -> The blue led
@ashokvarmamatta
ashokvarmamatta / graphify-mcp-guide.md
Last active April 22, 2026 10:45
🧠 Make Your AI Coding Assistant 500x Smarter — Complete Guide to graphify + code-review-graph + MCP (Knowledge Graphs for Claude Code, Cursor, Windsurf)

🧠 Make Your AI Coding Assistant 500x Smarter

Stop Burning Tokens — Use Knowledge Graphs + MCP to Give AI a Map of Your Code

Typing SVG
@bahamas10
bahamas10 / termcap.bash
Last active April 22, 2026 10:39
Colorize Manpages on the Terminal
# annotated by dave eddy (@yousuckatprogramming)
# explained - https://youtu.be/D0sG2fj0G4Y
# borrowed heavily from https://grml.org
# Begin blinking text mode
# I just use bold red here since my terminal has blinking disabled
export LESS_TERMCAP_mb=$'\e[1;31m'
# Begin bold text mode
export LESS_TERMCAP_md=$'\e[1;31m'